* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
            background: #000;
            color: #fff;
        }

        /* Hero Section */
        .about-hero {
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a2e 0%, #1a1a3e 100%);
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        .page-title {
            font-size: 64px;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease infinite;
        }

        .page-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 2px;
        }

        /* Main Content */
        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 50px;
        }

        /* Profile Section */
        .profile-section {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 60px;
            margin-bottom: 100px;
            align-items: start;
        }

        .profile-image-container {
            position: relative;
        }

        .profile-image {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, #1a1a3e 0%, #2a2a4e 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .profile-image:hover {
            border-color: rgba(255, 0, 110, 0.5);
            box-shadow: 0 20px 60px rgba(255, 0, 110, 0.2);
            transform: translateY(-5px);
        }

        .profile-image::before {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 120px;
            opacity: 0.2;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-decoration {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            filter: blur(40px);
            opacity: 0.6;
            z-index: -1;
        }

        .decoration-1 {
            top: -20px;
            right: -20px;
        }

        .decoration-2 {
            bottom: -20px;
            left: -20px;
        }

        .profile-info {
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        .profile-greeting {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .profile-name {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .profile-role {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
        }

        .profile-description {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
        }

        .profile-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-box {
            background: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 0, 110, 0.3);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 32px;
            font-weight: bold;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Skills Section */
        .section-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 50px;
            text-align: center;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 100px;
        }

        .skill-category {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .skill-category:hover {
            border-color: rgba(255, 0, 110, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
        }

        .skill-category-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .skill-category-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #fff;
        }

        .skill-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .skill-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .skill-name {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .skill-level {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .skill-bar {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin-top: 8px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, #ff006e, #8338ec);
            border-radius: 10px;
            transition: width 1s ease;
        }

        /* Education & Experience */

        /* Reemplaza todo el CSS de los badges con este código */

        /* Contenedor principal de badges */
        .badges-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            margin: 60px 0;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* Wrapper individual de cada badge */
        .badge-wrapper {
            flex: 0 1 auto;
            margin: 0;
            text-align: center;
        }

        .badge-wrapper h4 {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Contenedor del badge con estilo oscuro */
        .badge-compact {
            display: inline-block;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .badge-compact:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(255, 0, 110, 0.25);
            border-color: rgba(255, 0, 110, 0.4);
            background: rgba(255, 255, 255, 0.07);
        }

        .badge-compact iframe {
            display: block;
            border-radius: 10px;
            background: white;
        }

        /* Estilo específico para el badge de Credly */
        .credly-badge {
            min-height: 290px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Responsive para tablets */
        @media (max-width: 968px) {
            .badges-container {
                gap: 30px;
                padding: 30px 15px;
            }
            
            .badge-wrapper h4 {
                font-size: 16px;
            }
        }

        /* Responsive para móviles */
        @media (max-width: 768px) {
            .badges-container {
                flex-direction: column;
                gap: 40px;
                padding: 30px 20px;
            }
            
            .badge-compact {
                padding: 15px;
                max-width: 100%;
            }
            
            .badge-wrapper h4 {
                font-size: 15px;
            }
        }



        .timeline-section {
            margin-bottom: 100px;
        }

        .timeline {
            position: relative;
            padding-left: 50px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #ff006e, #8338ec, #3a86ff);
        }

        .timeline-item {
            position: relative;
            padding-bottom: 50px;
            animation: fadeInUp 0.8s ease backwards;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -56px;
            top: 0;
            width: 14px;
            height: 14px;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(255, 0, 110, 0.6);
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 0, 110, 0.3);
            transform: translateX(5px);
        }

        .timeline-date {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .timeline-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #fff;
        }

        .timeline-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
        }

        .timeline-description {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Contact CTA */
        .contact-cta {
            text-align: center;
            padding: 80px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
        }

        .cta-button {
            padding: 15px 40px;
            font-size: 16px;
            background: linear-gradient(135deg, #ff006e, #8338ec);
            color: #fff;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
        }

        /* Animaciones */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .profile-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .profile-image {
                height: 400px;
                max-width: 350px;
                margin: 0 auto;
            }

            .profile-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .timeline {
                padding-left: 40px;
            }

            .timeline-item::before {
                left: -46px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                gap: 15px;
                font-size: 14px;
            }

            .social-icons {
                display: none;
            }

            .page-title {
                font-size: 42px;
            }

            .about-content {
                padding: 60px 20px;
            }

            .profile-name {
                font-size: 36px;
            }

            .profile-stats {
                grid-template-columns: 1fr;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }
        }